You cannot continue a comment by using a line - continuation character 不能使用行繼續(xù)符來拆分注釋。
The line - continuation character is necessarily the last thing on a line 行繼續(xù)符必須是一行上最后的字符。
Line - continuation character 行接續(xù)字元
Generates a line - continuation character and outputs the specified string on a new line 生成行繼續(xù)符并在新的一行上輸出指定的字符串。
To break a single statement into multiple lines use the line - continuation character , which is an underscore 在您要將該行斷開的點(diǎn)處使用行繼續(xù)符,它是一個(gè)下劃線(
Some limitations exist as to where the line - continuation character can be used , such as in the middle of an argument name 對(duì)于行繼續(xù)符在何處使用存在一些限制,例如不能在參數(shù)名中間使用。
You can break an argument list with the line - continuation character , but the individual names of the arguments must remain intact 可以用行繼續(xù)符拆分一個(gè)參數(shù)列表,但單個(gè)參數(shù)名必須保持完整。
In the following example , the statement is broken into four lines with line - continuation characters terminating all but the last line 在下面的示例中,語句被拆分為四行。除最后一行外,前三行都以行繼續(xù)符結(jié)尾。
When implementing a code generator for a language that supports a line - continuation character for example , visual basic , this method should output the line - continuation character before it outputs a newline character 為支持行繼續(xù)符的語言(如visual basic )實(shí)現(xiàn)代碼生成器時(shí),此方法應(yīng)在輸出換行符之前輸出行繼續(xù)符。